Instance 0

Class720.printDateTime(Date dt)#0{
    return (dt == nullnull formatter.format(dt);
}


Instance 1

Class1500.getTime(Context context,Date date)#1{
    if(date == nullreturn "";
    else return tf.format(date);
}


Instance 2

Class820.debug(String message,Date value)#0{
        debug(message, (value == null"null" : df.format(value));
}


Instance 3

Class290.convertToString(final D value,final Locale locale)#0{
    final DateFormat dateFormat = getDateFormat(locale);
    if (dateFormat != null)
    {
      return dateFormat.format(value);
    }
    return value.toString();
}


Instance 4

Class1070.format(final JSON json,final Context context,final Object src,final Object o,final OutputSource out)#0{
    DateFormat f = context.getDateFormat();
    if (f != null) {
      StringFormatter.serialize(context, f.format(o), out);
    else if (context.getMode() == Mode.SCRIPT) {
      out.append("new Date(");
      out.append(Long.toString(date.getTime()));
      out.append(")");
    else {
      out.append(Long.toString(date.getTime()));
    }
}


Instance 5

Class270.toString()#1{
        return String.format("[%s, %s] rounded to [%s, %s]", _min == null "null" : f.format(_min), _max == null "null" : f.format(_max), _min == null "null" : f.format(minimum()), _max == null "null" : f.format(maximum()));
}


Instance 6

Class270.toString()#3{
        return String.format("[%s, %s] rounded to [%s, %s]", _min == null "null" : f.format(_min), _max == null "null" : f.format(_max), _min == null "null" : f.format(minimum()), _max == null "null" : f.format(maximum()));
}


Instance 7

Class1000.format(Date date,DateFormat dateFormat){
    return date != null ? dateFormat.format(datenull;
}


Instance 8

Class1150.formatDate(DateFormat format,Date date){
    if (date==nullreturn "???";
    else return format.format(date);
}


Instance 9

Class980.titleString(final DateFormat formatter,final Date date){
        return date == null "" formatter.format(date);
}


Instance 10

Class130.getTimestamp()#0{
        if (timestamp == null)
            return "";
        return df.format(timestamp);
}


Instance 11

Class1360.format1123(Date d,DateFormat df){
        long dt = d.getTime() 1000;
        if ((rfc1123DS != null&& (dt == rfc1123Sec))
            return rfc1123DS;
        rfc1123DS  = df.format);
}


Instance 12

Class730.formatDateTimeMedium(Date date)#1{
        return date == null null : df.format(date);
}


Instance 13

Class880.format(Date date,Locale locale,FORMAT_TYPE type)#3{
    return date == null "" : dateFormat.format(date);
}


Instance 14

Class620.getDebug(String message,Date value)#1{
        return getDebug(message, (value == null"null" : df.format(value));
}


Instance 15

Class890.getTableCellRendererComponent(final JTable list,final Object value,final boolean isSelected,final boolean cellHasFocus,final int index,final int col)#2{
            final Date date = (Date)value;
            if (date != null) {
                setText(formatter.format(date));
            else {
                setText("");
            }
}